let tmpFile = Components.classes["@mozilla.org/file/directory_service;1"].createInstance(Components.interfaces.nsIProperties).get("TmpD", Components.interfaces.nsILocalFile);
tmpFile.append(count + '-blankFile');
while (tmpFile.exists()) {
++count;
tmpFile.leafName = count + '-blankFile';
}
var foutstream = Components.classes["@mozilla.org/network/file-output-stream;1"].createInstance(Components.interfaces.nsIFileOutputStream);